home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / demos / sunknown.zip / RUNME.BAT < prev    next >
DOS Batch File  |  1994-04-07  |  2KB  |  50 lines

  1. @ECHO OFF
  2. REM **************************************************************************
  3. REM Batchfile for starting the SUPERUNKNOWN demo.
  4. REM **************************************************************************
  5. REM sound  : The UltraMID TSR which have to be loaded first needs about 40K
  6. REM          to operate. This batch-file tries to install UltraMID in high-
  7. REM          RAM to get as much free conventional memory as possible. If
  8. REM          you dont have the LH program then you have to free as much of
  9. REM          conventional memory as possible and remove the LH before
  10. REM          "ultramid -nsunknown.ini". After UltraMID has installed itself
  11. REM          you need about 616K of additional memory to run.
  12. REM **************************************************************************
  13. REM nosound: You need about 616K of free conventional memory to run.
  14. REM **************************************************************************
  15.  
  16. ECHO.
  17. ECHO INITIALISING THE SUPERUNKNOWN DEMO...
  18. ECHO.
  19.  
  20.  
  21. REM Initialises UltraMID, which tries to find the GUS.
  22. REM Remove the LH if you don't have this prog.
  23. LH ULTRAMID -Q -NSUNKNOWN.201
  24.  
  25. IF ERRORLEVEL = 1 GOTO NOGUS
  26.  
  27. REM A GUS-card was found and UltraMID was successfully installed.
  28. SUNKNOWN -GUS %1 %2
  29.  
  30. REM Frees the UltraMID from memory.
  31. ULTRAMID -F -Q
  32.  
  33. GOTO DONE
  34.  
  35.  
  36. REM No GUS found.
  37. :NOGUS
  38. ECHO.
  39. ECHO The Gravis Ultrasound initialisation failed for your system.
  40. ECHO This may be due to the lack of a GUS-card on your system.
  41. ECHO If not - please check your soundcard settings.
  42. ECHO.
  43. ECHO Hit [Return] to continue without sound, or [Ctrl]+[C] to abort.
  44. PAUSE
  45.  
  46. REM Starts the demo with no sound.
  47. SUNKNOWN %1 %2
  48.  
  49. :DONE
  50.